home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / tests / pdevtest / test.jan31 / ExtractAll < prev    next >
Encoding:
Text File  |  1989-02-04  |  230 b   |  11 lines

  1. #!/bin/csh
  2. if ($#argv < 1) then
  3.     echo "Give a file name"
  4.     exit 1
  5. endif
  6. cat /dev/null > $1
  7. foreach size (1 128 256 512 1024 2048 3072 4096 6144 8192 10240 12288 16384)
  8. echo $size Bytes >> $1
  9. egrep Slave write.$size >> $1
  10. end
  11.